home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / HTUtils.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  7KB  |  278 lines

  1. /*                                                    Utitlity macros for the W3 code library
  2.                                   MACROS FOR GENERAL USE
  3.                                              
  4.    Generates: HTUtils.h
  5.    
  6.    See also: the system dependent file "tcp.h"
  7.    
  8.  */
  9.  
  10. #ifndef DEBUG
  11. #define DEBUG   /* Noone ever turns this off as trace is too important */
  12. #endif          /* Keeep option for really small memory applications tho */
  13.                 
  14. #ifndef HTUTILS_H
  15. #define HTUTILS_H
  16.  
  17. #ifdef _WINDOWS                         /* SCW */
  18. #include "windef.h"
  19. #define BOOLEAN_DEFINED
  20. #endif
  21.  
  22. #ifdef SHORT_NAMES
  23. #define WWW_TraceFlag HTTrFlag
  24. #endif
  25.  
  26. /*
  27.  
  28. Debug message control.
  29.  
  30.  */
  31. #ifndef STDIO_H
  32. #include <stdio.h>
  33. #define STDIO_H
  34. #endif
  35.  
  36. #ifdef DEBUG
  37. #define TRACE (WWW_TraceFlag)
  38. #define PROGRESS(str) printf(str)
  39.         extern int WWW_TraceFlag;
  40. #else
  41. #define TRACE 0
  42. #define PROGRESS(str) /* nothing for now */
  43. #endif
  44.  
  45. #define CTRACE if(TRACE)fprintf
  46. #define tfp stdout
  47.  
  48.  
  49. /*
  50.  
  51. Standard C library for malloc() etc
  52.  
  53.  */
  54. #ifdef vax
  55. #ifdef unix
  56. #define ultrix  /* Assume vax+unix=ultrix */
  57. #endif
  58. #endif
  59.  
  60. #ifndef VMS
  61. #ifndef ultrix
  62. #ifdef NeXT
  63. #include <libc.h>       /* NeXT */
  64. #endif
  65. #ifndef MACH /* Vincent.Cate@furmint.nectar.cs.cmu.edu */
  66. #include <stdlib.h>     /* ANSI */
  67. #endif
  68. #else /* ultrix */
  69. #include <malloc.h>
  70. #include <memory.h>
  71. #include <stdio.h>
  72. #endif
  73.  
  74. #else   /* VMS */
  75. #include <stdio.h>
  76. #include <ctype.h>
  77. #endif
  78.  
  79. /*
  80.  
  81. Macros for declarations
  82.  
  83.  */
  84. #define PUBLIC                  /* Accessible outside this module     */
  85. #define PRIVATE static          /* Accessible only within this module */
  86.  
  87. #if __STDC__
  88. #define CONST const             /* "const" only exists in STDC */
  89. #define NOPARAMS (void)
  90. #define PARAMS(parameter_list) parameter_list
  91. #define NOARGS (void)
  92. #define ARGS1(t,a) \
  93.                 (t a)
  94. #define ARGS2(t,a,u,b) \
  95.                 (t a, u b)
  96. #define ARGS3(t,a,u,b,v,c) \
  97.                 (t a, u b, v c)
  98. #define ARGS4(t,a,u,b,v,c,w,d) \
  99.                 (t a, u b, v c, w d)
  100. #define ARGS5(t,a,u,b,v,c,w,d,x,e) \
  101.                 (t a, u b, v c, w d, x e)
  102. #define ARGS6(t,a,u,b,v,c,w,d,x,e,y,f) \
  103.                 (t a, u b, v c, w d, x e, y f)
  104. #define ARGS7(t,a,u,b,v,c,w,d,x,e,y,f,z,g) \
  105.                 (t a, u b, v c, w d, x e, y f, z g)
  106. #define ARGS8(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h) \
  107.                 (t a, u b, v c, w d, x e, y f, z g, s h)
  108. #define ARGS9(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h,r,i) \
  109.                 (t a, u b, v c, w d, x e, y f, z g, s h, r i)
  110. #define ARGS10(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h,r,i,q,j) \
  111.                 (t a, u b, v c, w d, x e, y f, z g, s h, r i, q j)
  112.  
  113. #else  /* not ANSI */
  114.  
  115. #ifndef _WINDOWS
  116. #define CONST
  117. #endif
  118. #define NOPARAMS ()
  119. #define PARAMS(parameter_list) ()
  120. #define NOARGS ()
  121. #define ARGS1(t,a) (a) \
  122.                 t a;
  123. #define ARGS2(t,a,u,b) (a,b) \
  124.                 t a; u b;
  125. #define ARGS3(t,a,u,b,v,c) (a,b,c) \
  126.                 t a; u b; v c;
  127. #define ARGS4(t,a,u,b,v,c,w,d) (a,b,c,d) \
  128.                 t a; u b; v c; w d;
  129. #define ARGS5(t,a,u,b,v,c,w,d,x,e) (a,b,c,d,e) \
  130.                 t a; u b; v c; w d; x e;
  131. #define ARGS6(t,a,u,b,v,c,w,d,x,e,y,f) (a,b,c,d,e,f) \
  132.                 t a; u b; v c; w d; x e; y f;
  133. #define ARGS7(t,a,u,b,v,c,w,d,x,e,y,f,z,g) (a,b,c,d,e,f,g) \
  134.                 t a; u b; v c; w d; x e; y f; z g;
  135. #define ARGS8(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h) (a,b,c,d,e,f,g,h) \
  136.                 t a; u b; v c; w d; x e; y f; z g; s h;
  137. #define ARGS9(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h,r,i) (a,b,c,d,e,f,g,h,i) \
  138.                 t a; u b; v c; w d; x e; y f; z g; s h; r i;
  139. #define ARGS10(t,a,u,b,v,c,w,d,x,e,y,f,z,g,s,h,r,i,q,j) (a,b,c,d,e,f,g,h,i,j) \
  140.                 t a; u b; v c; w d; x e; y f; z g; s h; r i q j;
  141.                 
  142.         
  143. #endif /* __STDC__ (ANSI) */
  144.  
  145. #ifndef NULL
  146. #define NULL ((void *)0)
  147. #endif
  148.  
  149. /*
  150.  
  151. Booleans
  152.  
  153.  */
  154. /* Note: GOOD and BAD are already defined (differently) on RS6000 aix */
  155. /* #define GOOD(status) ((status)38;1)   VMS style status: test bit 0         */
  156. /* #define BAD(status)  (!GOOD(status))  Bit 0 set if OK, otherwise clear   */
  157.  
  158. #ifndef _WINDOWS
  159. #ifndef BOOLEAN_DEFINED
  160.         typedef char    BOOLEAN;                /* Logical value */
  161. #ifndef CURSES
  162. #ifndef TRUE
  163. #define TRUE    (BOOLEAN)1
  164. #define FALSE   (BOOLEAN)0
  165. #endif
  166. #endif   /*  CURSES  */
  167. #endif   /* _WINDOWS */
  168. #define BOOLEAN_DEFINED
  169. #endif
  170.  
  171. #ifndef BOOL
  172. #define BOOL BOOLEAN
  173. #endif
  174. #ifndef YES
  175. #define YES (BOOLEAN)1
  176. #define NO (BOOLEAN)0
  177. #endif
  178.  
  179. #ifndef min
  180. #define min(a,b) ((a) <= (b) ? (a) : (b))
  181. #define max(a,b) ((a) >= (b) ? (a) : (b))
  182. #endif
  183.  
  184. #define TCP_PORT 80     /* Allocated to http by Jon Postel/ISI 24-Jan-92 */
  185. #define OLD_TCP_PORT 2784       /* Try the old one if no answer on 80 */
  186. #define DNP_OBJ 80      /* This one doesn't look busy, but we must check */
  187.                         /* That one was for decnet */
  188.  
  189. /*      Inline Function WHITE: Is character c white space? */
  190. /*      For speed, include all control characters */
  191.  
  192. #define WHITE(c) (((unsigned char)(TOASCII(c))) <= 32)
  193.  
  194.  
  195. /*
  196.  
  197. Sucess (>=0) and failure (<0) codes
  198.  
  199.  */
  200.  
  201. #define HT_LOADED 29999                 /* Instead of a socket */
  202. #define HT_OK           0               /* Generic success*/
  203.  
  204. #define HT_NO_ACCESS    -10             /* Access not available */
  205. #define HT_FORBIDDEN    -11             /* Access forbidden */
  206. #define HT_INTERNAL     -12             /* Weird -- should never happen. */
  207. #define HT_BAD_EOF      -12             /* Premature EOF */
  208.  
  209. #include "HTString.h"   /* String utilities */
  210.  
  211. #ifdef __STDC__
  212. #include <stdarg.h>
  213. #else
  214. #include <varargs.h>
  215. #endif
  216.  
  217. #ifdef CURSES
  218.         /* htbrowse.c; */
  219. #include <curses.h>
  220.  
  221.         extern        WINDOW  *w_top, *w_text, *w_prompt;
  222.         extern        void    user_message PARAMS((const char *fmt, ...));
  223.         extern        void    prompt_set PARAMS((CONST char * msg));
  224.         extern        void    prompt_count PARAMS((long kb));
  225. #else
  226. #define user_message printf
  227. #endif
  228.  
  229. /*
  230.  
  231. Out Of Memory checking for malloc() return:
  232.  
  233.  */
  234. #ifndef __FILE__
  235. #define __FILE__ ""
  236. #define __LINE__ ""
  237. #endif
  238.  
  239. #define outofmem(file, func) \
  240.  { fprintf(stderr, "%s %s: out of memory.\nProgram aborted.\n", file, func); \
  241.   exit(1);}
  242. /* extern void outofmem PARAMS((const char *fname, const char *func)); */
  243.  
  244.  
  245. /*
  246.  
  247.   WHO PUT THESE IN AND WHAT ARE THEY ANYWAY?
  248.   
  249.  */
  250. #ifdef THEY_WILL_BE_REMOVED
  251. extern void msg_init PARAMS((int height));
  252. extern void msg_printf PARAMS((int y, const char *fmt, ...));
  253. extern void msg_exit PARAMS((int wait_for_key));
  254. #endif
  255.  
  256. /*
  257.  
  258. Upper- and Lowercase macros
  259.  
  260.    The problem here is that toupper(x) is not defined officially unless isupper(x) is.
  261.    These macros are CERTAINLY needed on #if defined(pyr) || define(mips) or BDSI
  262.    platforms. For safefy, we make them mandatory.
  263.    
  264.  */
  265. #include <ctype.h>
  266.  
  267. #ifndef TOLOWER
  268.   /* Pyramid and Mips can't uppercase non-alpha */
  269. #define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
  270. #define TOUPPER(c) (islower(c) ? toupper(c) : (c))
  271. #endif /* ndef TOLOWER */
  272.  
  273. #endif /* HTUTILS_H */
  274.  
  275. /*
  276.  
  277.    end of utilities  */
  278.